home *** CD-ROM | disk | FTP | other *** search
- package symantec.itools.db.net;
-
- public class ErrorException extends NetException {
- NetError _error;
-
- public ErrorException(NetError error) {
- this._error = error;
- }
-
- public NetError getError() {
- return this._error;
- }
-
- public String toString() {
- return new String("ScaleWeb Server error: Severity: " + this._error.getSeverity() + " Code: " + this._error.getID() + " Description: " + this._error.getErrorString(0) + "; " + this._error.getErrorString(1) + "; " + this._error.getErrorString(2));
- }
- }
-